For some reason we end up allocating the colorplane widget
before it is realized, and then never initialize the surface.
Fix this by explicitly doing it on realize.
https://bugzilla.gnome.org/show_bug.cgi?id=773474
create_surface (GTK_COLOR_PLANE (widget));
}
+static void
+plane_realize (GtkWidget *widget)
+{
+ GTK_WIDGET_CLASS (gtk_color_plane_parent_class)->realize (widget);
+
+ create_surface (GTK_COLOR_PLANE (widget));
+}
+
static void
set_cross_cursor (GtkWidget *widget,
gboolean enabled)
widget_class->draw = plane_draw;
widget_class->size_allocate = plane_size_allocate;
+ widget_class->realize = plane_realize;
widget_class->key_press_event = plane_key_press;
g_object_class_install_property (object_class,